home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / wlib11_2.zip / EXAMPLES.EXE / EXAM118.C < prev    next >
C/C++ Source or Header  |  1991-03-13  |  266b  |  11 lines

  1.   #include "window.h"
  2.  
  3.   main()
  4.   {
  5.     WindowInitializeSystem();
  6.  
  7.     /* Clear Region defined by (1,1) as the upper right hand corner and (10,10)
  8.        as the lower right hand corner */
  9.  
  10.     ClearRegion(1,1,10,10,CREATE_VIDEO_ATTRIBUTE(black,white));
  11.   }